.page{
    padding: 2rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}
.page li{
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
}
.page li a{
    display: block;
    width: 100%;
    height: 100%;
    line-height: 1rem;
    text-align: center;
    font-size: 0.88rem;
    font-family: PingFang;
    font-weight: 400;
    color: #1a1a1a;
    transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}
.page li:hover a,
.page li.thisclass a{
    color: #4162B6;
}
.page li.p,
.page li.n{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page li.p a{
    background: url(../images/info_page_lt.png) no-repeat;
    background-size: 100%;
    filter: grayscale(100%);
    width: 7px;
    height: 12px;
}
.page li.n a{
    background: url(../images/info_page_rt.png) no-repeat;
    background-size: 100%;
    filter: grayscale(100%);
    width: 6px;
    height: 10px;
}
.page li.p:hover a,
.page li.n:hover a{
    filter: grayscale(0);
}
.nodata{
    text-align: center;
    font-size: 1rem;
}